home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / Winter Shell 1.0d2 / Source / Libraries / LongPointLib / LongPointLib.h < prev   
Encoding:
C/C++ Source or Header  |  1993-12-18  |  198 b   |  6 lines  |  [TEXT/KAHL]

  1. #pragma once
  2. typedef struct { long v, h; } LPointType;
  3. void LPointFromPoint(LPointType *lpt, Point pt);
  4. Point LPointToPoint(const LPointType *pt);
  5. void LPointOffset(LPointType *pt, long h, long v);
  6.